home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 001 / whereis / history next >
Text File  |  1993-08-25  |  2KB  |  43 lines

  1. Revision History:
  2.  
  3. 1.00 : 30 Aug 93
  4.        first release. This was the 'product' of playing with the libraries
  5.        of unixlib,rather than some serious Programming
  6.  
  7. 1.10 : 07 Aug 93
  8.        received bugreport/alterations in source by
  9.        A.Oliver (aoliver@acorn.co.uk) .Thanks Ashley !
  10.    bugfix : last entry of Run$path was not read,because it generally
  11.             has no ',' behind it
  12.    bugfix (A.Oliver) : don't blindly strip trailing '.' ,it might be a
  13.                        ':' ,when a pathvariable is in Run$Path
  14.    bugfix (A.Oliver) : there might be a ',,' entry or no Run$Path at all,
  15.                        search CWD instead.
  16.    added :  if Run$Path contains a pathvariable,search all given paths
  17.             within. Did anyone ever crash RO with nested Run$Paths (:-) ?
  18.             This wasn't a simple 'fix',but a major restructuring of the program
  19.    removed: static char envir[128] = "Run$Path" ; and other never used
  20.            variables (:-)
  21. 1.20 : 25 Aug 93
  22.    bugfix: if the Run$Path started with ',' , it's the CWD, this was
  23.            not working properly with any prior version.
  24.            (another bugreport from A Oliver)
  25.    minor changes in search() so filen doesn't get lower()'d every single
  26.            round while combing through the dir.
  27.    added searching for Alias$<name> to add unix-'which' functionality.
  28.    added searching through all modules for *commands,returns command/Modulename
  29.    added searching in File$Path (doesn't really fit,but who cares)
  30.    added -f flag to (not) include File$Path in seach
  31.    added counting/reporting of number of *commands/files with -v
  32.    added -h switch to give help, cut down on output in case of error
  33.    added use of stricmp() instead of strcmp() and lower()'ing <filename>
  34.          in moduletest()
  35.    bigfix: wildcard bug: if wildcard matched the last characters of a
  36.          leafname, the file would not be recognized/displayed,this was
  37.          a bug in UnixLib 3.6c (see file 'UnixLfix')
  38.    added - ,so files like '-ls' could be searched for with 'whereis - -ls'
  39.    added 'Processing name' message,if -v is given.Some want to know if their
  40.          cryptic input (whereis -f -vf - -vf) is really a search for file '-vf'
  41.    added flexible switch handling: -v -f is as good as -fv .Position of a
  42.          switch in the commandline does not matter.
  43.